# greetingsWithNameBandRandom.py # # Description: Greeting chatbot that greets the user with the user's name # then ask for user's favourite band and comment on it # in such a way that the comment is not too obviously repetitive. # # Author: Anne Lavergne # Date: F Jan. 12 2024 import random # Ask the user for her/his name and read the name ##userName = input("What is your name: ") # Print a greeting with the user name ##print(f"Greetings, {userName}!") # Ask the user for her/his favourite band and read the band userBand = input("What is your favourite band: ") comments = ["Cool!", "Really now???", "Oh! I love this band!"] # Print a comment about this band print(f"Ah! {userBand}! {random.choice(comments)}")